home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 92 / CDMM92_1.ISO / SOF 2 SDK / sof2sdk-101.msi / _92D6AC311BB48EBA344BBABC89DA6AB0 / _6E3566A66CC542D88499B9A43F61C35F < prev    next >
Encoding:
Text File  |  2002-04-09  |  2.5 KB  |  133 lines

  1. {
  2.     \\ NETWORK MENU \\
  3.  
  4.     menuDef 
  5.     {
  6.         name        "invalid_version_ignore_menu"
  7.         visible        0
  8.         fullscreen    0
  9.         rect        0 0 640 480
  10.         focusColor    .49 .56 .27 1
  11.         style        WINDOW_STYLE_FILLED
  12.         popup
  13.  
  14.         onESC 
  15.         { 
  16.             close invalid_version_ignore_menu;
  17.         }
  18.  
  19.         itemDef
  20.         {
  21.             name        window
  22.             rect        0 0 640 480
  23.             style        WINDOW_STYLE_FILLED
  24.             backcolor    0 0 0 .5
  25.             visible        1
  26.             decoration
  27.         }
  28.  
  29.         itemDef 
  30.         {
  31.             name        window
  32.             rect        100 80 450 200
  33.             background    "gfx/menus/backdrop/requestor"
  34.             style        WINDOW_STYLE_SHADER
  35.             visible        1
  36.             decoration
  37.         }
  38.  
  39.         itemDef 
  40.         {
  41.             name        window
  42.             text        "Permanently ignore the current version update?"
  43.             style        WINDOW_STYLE_FILLED
  44.             textfont    "hud"
  45.             textscale    .43
  46.             rect        100  125 500 33
  47.             textalign    1
  48.             textalignx    205
  49.             textaligny    8
  50.             forecolor    .12 .14 .08 1
  51.             visible        1
  52.             decoration
  53.         }
  54.  
  55.  
  56.         itemDef 
  57.         {
  58.               name        yes_ignore_button
  59.             group        invalid_version
  60.               text        "Yes"
  61.             type        ITEM_TYPE_BUTTON
  62.             style        WINDOW_STYLE_FILLED
  63.               rect        170 190 120 20
  64.             textfont    "hud"
  65.             textscale    .43
  66.             textalign    0
  67.               textalignx    2
  68.             textaligny    2
  69.             forecolor    .12 .14 .08 1
  70.             backcolor    0 0 0 0
  71.               visible        1 
  72.             border        1
  73.             bordercolor    0 0 0 1
  74.  
  75.               action 
  76.             {
  77.                 play "sound/misc/menus/select.wav" ; 
  78.                 uiScript ignoreCurrentVersion
  79.             }
  80.             mouseEnter 
  81.             { 
  82.                 play "sound/misc/menus/hilite1.wav" ; 
  83.                 setitemcolor yes_ignore_button backcolor .12 .14 .08 1
  84.                 setitemcolor yes_ignore_button forecolor .49 .56 .27 1
  85.             }
  86.               mouseExit 
  87.             { 
  88.                 setitemcolor yes_ignore_button forecolor .12 .14 .08 1
  89.                 setitemcolor yes_ignore_button backcolor 0 0 0 0
  90.             }
  91.         }
  92.  
  93.         itemDef 
  94.         {
  95.               name        no_ignore_button
  96.             group        invalid_version
  97.               text        "No"
  98.             type        ITEM_TYPE_BUTTON
  99.             style        WINDOW_STYLE_FILLED
  100.               rect        310 190 120 20
  101.             textfont    "hud"
  102.             textscale    .43
  103.             textalign    0
  104.               textalignx    11
  105.             textaligny    2
  106.             forecolor    .12 .14 .08 1
  107.             backcolor    0 0 0 0
  108.               visible        1 
  109.             border        1
  110.             bordercolor    0 0 0 1
  111.  
  112.               action 
  113.             {
  114.                 play "sound/misc/menus/select.wav" ; 
  115.                 close invalid_version_ignore_menu ; 
  116.             }
  117.  
  118.             mouseEnter 
  119.             { 
  120.                 play "sound/misc/menus/hilite1.wav" ; 
  121.                 setitemcolor no_ignore_button backcolor .12 .14 .08 1
  122.                 setitemcolor no_ignore_button forecolor .49 .56 .27 1
  123.             }
  124.  
  125.               mouseExit 
  126.             { 
  127.                 setitemcolor no_ignore_button forecolor .12 .14 .08 1
  128.                 setitemcolor no_ignore_button backcolor 0 0 0 0
  129.             }
  130.         }
  131.     }
  132. }
  133.